home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
irccol1a
/
form1.frm
< prev
next >
Wrap
Text File
|
1998-10-08
|
2KB
|
67 lines
VERSION 5.00
Begin VB.Form Form1
BackColor = &H80000008&
Caption = "Form1"
ClientHeight = 6795
ClientLeft = 60
ClientTop = 345
ClientWidth = 11355
BeginProperty Font
Name = "Terminal"
Size = 9
Charset = 255
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
LinkTopic = "Form1"
ScaleHeight = 453
ScaleMode = 3 'Pixel
ScaleWidth = 757
StartUpPosition = 3 'Windows Default
WindowState = 2 'Maximized
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
' dont just rip me off! give me some help if ya can
' Not going into the technaclitys of this its To Difficult to explian.
'Email :familae@familae.screaming.net
Private Irc_Window As New ChanWindow
Private Sub Form_Click()
Close #1
Open "C:\torment\txt\DRAGON.txt" For Input As #1
Dim data As String
Do
Line Input #1, data
Irc_Window.Out Trim(data)
Irc_Window.ScrWindowup Me, 15
DoEvents
Loop While Not EOF(1)
Irc_Window.ScrWindowup Me, 20
Irc_Window.Out "4,0Hello7 This is a MIRC Complient Text Parser7 :) P7l12e7a12s7e 15H12e15l12p 15M12e 12m15a12k15e 12i15t 12I15n12t15o 12a 15S12c15r12o15l12l15a12b15l12e 15T12e15x12t 15B12o15x 12?"
Irc_Window.ScrWindowup Me, 27
End Sub
Private Sub Form_Load()
Set Irc_Window.OwnerForm = Form1
End Sub
Private Sub Form_Paint()
Irc_Window.Refresh
End Sub